'DeclarationProtected Overloads Function Fill( _ ByVal dataTables() As System.Data.DataTable, _ ByVal startRecord As System.Integer, _ ByVal maxRecords As System.Integer, _ ByVal command As System.Data.IDbCommand, _ ByVal behavior As System.Data.CommandBehavior _ ) As System.Integer
'UsageDim instance As VistaDBDataAdapter Dim dataTables() As System.Data.DataTable Dim startRecord As System.Integer Dim maxRecords As System.Integer Dim command As System.Data.IDbCommand Dim behavior As System.Data.CommandBehavior Dim value As System.Integer value = instance.Fill(dataTables, startRecord, maxRecords, command, behavior)
protected System.int Fill( System.Data.DataTable[] dataTables, System.int startRecord, System.int maxRecords, System.Data.IDbCommand command, System.Data.CommandBehavior behavior )
Parameters
- dataTables
- The System.Data.DataTable objects to fill from the data source.
- startRecord
- The zero-based record number to start with.
- maxRecords
- The maximum number of records to retrieve.
- command
- The System.Data.IDbCommand executed to fill the System.Data.DataTable objects.
- behavior
- One of the System.Data.CommandBehavior values.
Return Value
The number of rows added to or refreshed in the data tables.